home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 1 PolishedStone preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_PolishedStone():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Polishing': 20,
- 'Color': (75, 75, 75),
- 'Angle': 313,
- 'Detail': 256,
- 'Blur': 20,
- }
-
- def Do(Environment):
- App.Do(Environment, 'PolishedStone', Preset_PolishedStone())
-